home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / FINGER16._B_ < prev    next >
Text File  |  1997-07-26  |  685b  |  31 lines

  1. #
  2. # Borland makefile for FINGER [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # To use: "make -f finger16._B_"
  6. #
  7.  
  8. CCFLAGS = -c
  9.  
  10. finger.exe: finger.res finger.obj about.obj async.obj paint.obj str.obj finger.def wil16.lib
  11.   tlink -c -n -Tw  c0ws @finger.rsp,finger,finger,mathws cws import wil16,finger,finger
  12.   rlink finger.res finger.exe
  13.  
  14. finger.res: finger.rc
  15.    brcc finger.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc $(CCFLAGS)  about.c
  19.  
  20. async.obj: async.c async.h
  21.    bcc $(CCFLAGS)  async.c
  22.  
  23. finger.obj: finger.c wil.h
  24.    bcc $(CCFLAGS)  finger.c
  25.  
  26. paint.obj: paint.c paint.h
  27.    bcc $(CCFLAGS)  paint.c
  28.  
  29. str.obj: str.c str.h
  30.    bcc $(CCFLAGS)  str.c          
  31.